home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / gui / precog2_1.lha / Precognition2_1 / include / parms.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  318 b   |  23 lines

  1. #ifndef PARMS_H
  2. #define PARMS_H
  3.  
  4. #ifdef __SASC_60   /* SAS/C 6.0 or higher */
  5. #define ANSI_HEADERS 1
  6. #endif
  7.  
  8. #ifdef _DCC   /* DICE 3.0 */
  9. #define ANSI_HEADERS 1
  10. #endif
  11.  
  12. #ifdef __GNUC__   /* GCC 2.6.1 */
  13. #define ANSI_HEADERS 1
  14. #endif
  15.  
  16. #ifdef ANSI_HEADERS
  17. #define __PARMS(s) s
  18. #else
  19. #define __PARMS(s) ()
  20. #endif
  21.  
  22. #endif
  23.